Skip to main content

All Questions

3votes
1answer
157views

Mail Client - Displaying email details for selected JTable Row

I'm trying to write a very simple IMAP email client in Java. There is one table per account with multiple multiline rows. The last selected row of one of the tables should be displayed in an extra ...
Tobias Grothe's user avatar
2votes
1answer
121views

MVC pattern in my Repair Shop application

I am currently learning Java programing by building real life business application for repair shops. I am posting this code so I can get critical review, and change my application architecture if ...
Zoran Jankov's user avatar
1vote
2answers
2kviews

Using decorator and strategy pattern for dynamically generating SQL queries

This is a link to my application that actually runs on the design specified in the image. The idea behind the image is that the SubjectInfoViewer behaves as the ...
Muhammad Luqman's user avatar
1vote
1answer
70views

File-copying Manager

I have the following java class which has many private variables and methods: ...
cssGEEK's user avatar
3votes
1answer
285views

Swing application: Working with GridBagLayout and Mediator pattern

SCENARIO: As a follow-up of this question on Stackoverflow asked few days back, I am working on a swing application(article tagging tool) where the user(on an initial jpanel) would fill up some ...
Sandeep Chatterjee's user avatar
3votes
1answer
2kviews

Implementation of MVC pattern with paintComponent method

Could someone review my code, with respect to OOP, clean code and MVC pattern? Main app: ...
Pulkownik's user avatar
1vote
1answer
333views

Encapsulating this List<Message> properly

I know that Swing isn't true MVC: Using this modified MVC helps to more completely decouple the model from the view. Leaving aside the veracity of the above claim, the problem I run into is that I ...
Thufir's user avatar
3votes
1answer
2kviews

Design Pattern for Swing application

I have a Swing application with no real design pattern. I want to start learning to design Swing or any types of application properly. Here is the main JFrame class....
Stripies's user avatar

close